home *** CD-ROM | disk | FTP | other *** search
/ Symantec Visual Cafe for Java 2.5 / symantec-visual-cafe-2.5-database-dev-edition.iso / Visual Cafe Pro v1.0 / TUTORIAL.BIN / ModalDialog.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-12-16  |  485 b   |  14 lines

  1. package symantec.itools.awt.util.dialog;
  2.  
  3. import java.awt.Frame;
  4.  
  5. public class ModalDialog extends DialogBox {
  6.    public ModalDialog(Frame var1) {
  7.       super(var1, true);
  8.    }
  9.  
  10.    public ModalDialog(Frame var1, String var2) {
  11.       super(var1, var2, true);
  12.    }
  13. }
  14.